home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / online / ibrowse_plugins / openurl / developer / c / include / clib / openurl_protos.h
C/C++ Source or Header  |  2004-08-03  |  1KB  |  57 lines

  1. #ifndef    CLIB_OPENURL_PROTOS_H
  2. #define    CLIB_OPENURL_PROTOS_H
  3.  
  4. /*
  5. **  $VER: rxtoolkit_protos.h 4.4 (1.3.2003)
  6. **
  7. **  C prototypes. For use with 32 bit integers only.
  8. **
  9. **  openurl.library - universal URL display and browser
  10. **  launcher library
  11. **
  12. **  Written by Troels Walsted Hansen <troels@thule.no>
  13. **  Placed in the public domain.
  14. **
  15. **  Developed by:
  16. **  - Alfonso Ranieri <alforan@tin.it>
  17. **  - Stefan Kost <ensonic@sonicpulse.de>
  18. **
  19. */
  20.  
  21. #ifndef EXEC_TYPES_H
  22. #include <exec/types.h>
  23. #endif
  24.  
  25. #ifndef UTILITY_TAGITEM_H
  26. #include <utility/tagitem.h>
  27. #endif
  28.  
  29. #ifndef LIBRARIES_OPENURL_H
  30. #include <libraries/openurl.h>
  31. #endif
  32.  
  33. /* Obsolete, don't use! */
  34. struct URL_Prefs *URL_OldGetPrefs(void);
  35. void URL_OldFreePrefs(struct URL_Prefs *);
  36. BOOL URL_OldSetPrefs(struct URL_Prefs *, BOOL);
  37. struct URL_Prefs *URL_OldGetDefaultPrefs(void);
  38. BOOL URL_OldLaunchPrefsApp(void);
  39.  
  40. /* Reach URL */
  41. BOOL URL_OpenA(STRPTR, struct TagItem *);
  42. BOOL URL_Open(STRPTR, Tag, ...);
  43.  
  44. /* Preferences */
  45. struct URL_Prefs *URL_GetPrefsA(struct TagItem *);
  46. struct URL_Prefs *URL_GetPrefs(Tag tag1,...);
  47. void URL_FreePrefsA(struct URL_Prefs *,struct TagItem *);
  48. void URL_FreePrefs(struct URL_Prefs *,Tag tag1,...);
  49. BOOL URL_SetPrefsA(struct URL_Prefs *, struct TagItem *);
  50. BOOL URL_SetPrefs(struct URL_Prefs *, Tag tag1,...);
  51.  
  52. /* Prefs application */
  53. BOOL URL_LaunchPrefsAppA(struct TagItem *);
  54. BOOL URL_LaunchPrefsApp(Tag tag1,...);
  55.  
  56. #endif /* CLIB_OPENURL_PROTOS_H */
  57.